home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
scottman
/
form2.frm
< prev
next >
Wrap
Text File
|
1995-09-06
|
2KB
|
62 lines
VERSION 2.00
Begin Form Form2
BackColor = &H00C0C0C0&
BorderStyle = 1 'Fixed Single
Caption = "Run Special"
ClientHeight = 1770
ClientLeft = 5970
ClientTop = 7560
ClientWidth = 4200
Height = 2175
Left = 5910
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1770
ScaleWidth = 4200
Top = 7215
Width = 4320
Begin CommandButton Command2
Caption = "Cancel"
Height = 615
Left = 2400
TabIndex = 0
Top = 960
Width = 1575
End
Begin CommandButton Command1
Caption = "OK"
Default = -1 'True
Height = 615
Left = 240
TabIndex = 1
Top = 960
Width = 1575
End
Begin TextBox Text1
Height = 285
Left = 1440
TabIndex = 3
Top = 240
Width = 2535
End
Begin Label Label1
BorderStyle = 1 'Fixed Single
Caption = "Name"
Height = 285
Left = 240
TabIndex = 2
Top = 240
Width = 1095
End
End
Sub Command1_Click ()
x = Shell(text1.Text, 1)
form2.Visible = False
End Sub
Sub Command2_Click ()
form2.Visible = False
End Sub